home *** CD-ROM | disk | FTP | other *** search
/ SuperHack / SuperHack CD.bin / CODING / CPP / WFC010.ZIP / INCLUDE / CWAIT.HPP < prev    next >
C/C++ Source or Header  |  1995-10-03  |  826b  |  38 lines

  1. #if ! defined ( WAIT_CURSOR_CLASS_HEADER )
  2.  
  3. /*
  4. ** Author: Samuel R. Blackburn
  5. ** CI$: 76300,326
  6. ** Internet: sammy@sed.csc.com
  7. **
  8. ** You can use it any way you like as long as you don't try to sell it.
  9. **
  10. ** Any attempt to sell WFC in source code form must have the permission
  11. ** of the original author. You can produce commercial executables with
  12. ** WFC but you can't sell WFC.
  13. **
  14. ** Copyright, 1995, Samuel R. Blackburn
  15. */
  16.  
  17. #define WAIT_CURSOR_CLASS_HEADER
  18.  
  19. class CWaitCursor
  20. {
  21.    protected:
  22.  
  23.        HCURSOR m_PreviousCursorHandle;
  24.  
  25.    public:
  26.  
  27.        CWaitCursor( int cursor_number = 0 );
  28.  
  29.       /*
  30.       ** Destructor should be virtual according to MSJ article in Sept 1992
  31.       ** "Do More with Less Code:..."
  32.       */
  33.  
  34.       virtual ~CWaitCursor();
  35. };
  36.  
  37. #endif // WAIT_CURSOR_CLASS_HEADER
  38.